CUDA_MEMCPY2D_st

Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Members

Variables

Height
size_t Height;

< Height of 2D memory copy

WidthInBytes
size_t WidthInBytes;

< Width of 2D memory copy in bytes

dstArray
CUarray dstArray;

< Destination array reference

dstDevice
CUdeviceptr dstDevice;

< Destination device pointer

dstHost
void* dstHost;

< Destination host pointer

dstMemoryType
CUmemorytype dstMemoryType;

< Destination memory type (host, device, array)

dstPitch
size_t dstPitch;

< Destination pitch (ignored when dst is array)

dstXInBytes
size_t dstXInBytes;

< Destination X in bytes

dstY
size_t dstY;

< Destination Y

srcArray
CUarray srcArray;

< Source array reference

srcDevice
CUdeviceptr srcDevice;

< Source device pointer

srcHost
const(void)* srcHost;

< Source host pointer

srcMemoryType
CUmemorytype srcMemoryType;

< Source memory type (host, device, array)

srcPitch
size_t srcPitch;

< Source pitch (ignored when src is array)

srcXInBytes
size_t srcXInBytes;

< Source X in bytes

srcY
size_t srcY;

< Source Y

Meta